home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / custmod.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.4 KB  |  41 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef CustModH
  7. #define CustModH
  8. //---------------------------------------------------------------------------
  9. #include <Windows.hpp>
  10. #include <Messages.hpp>
  11. #include <Sysutils.hpp>
  12. #include <Graphics.hpp>
  13. #include <Forms.hpp>
  14. #include <Dialogs.hpp>
  15. #include <Dbgrids.hpp>
  16. #include <Grids.hpp>
  17. #include <Classes.hpp>
  18. #include <Controls.hpp>
  19. #include <DBGrids.hpp>
  20. #include <ExtCtrls.hpp>
  21. #include <Grids.hpp>
  22. #include <StdCtrls.hpp>
  23. #include "BASEMOD.h"
  24. //---------------------------------------------------------------------------
  25. class TCust : public TBase
  26. {
  27. __published:
  28.     TEdit *FilterText;
  29.     TCheckBox *FilterToggle;
  30.     TDBGrid *DBGrid1;
  31.     void __fastcall FilterToggleClick(TObject *Sender);
  32.     void __fastcall FilterTextChange(TObject *Sender);
  33. private:        // private user declarations
  34. public:         // public user declarations
  35.     virtual __fastcall TCust(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern TCust *Cust;
  39. //---------------------------------------------------------------------------
  40. #endif
  41.